I'm always leaving my caps lock on and people think I'm yelling at them when I'm not, so I wrote the inverse of the makeUpperCase.
function makeLowerCase (yelling) {
return yelling.toLowerCase();
}
console.log(makeLowerCase("ASDFGHJKL"));
const makeLowerCase = function(yelling) {
return yelling.toLowerCase();
}
console.log(makeLowerCase("ASDFGHJKL"));
const makeLowerCase = yelling => yelling.toLowerCase();
console.log (makeLowerCase("KIM LEFT HER CAPS LOCK ON AGAIN"))